home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / gdb.new / gdb-4.0 / bfd / aoutf1.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-03  |  19.9 KB  |  624 lines

  1. /* A.out "format 1" file handling code
  2.    Copyright (C) 1990-1991 Free Software Foundation, Inc.
  3.    Written by Cygnus Support.
  4.  
  5. This file is part of BFD, the Binary File Descriptor library.
  6.  
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or
  10. (at your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. #include <ansidecl.h>
  22. #include <sysdep.h>
  23. struct external_exec;
  24. #include <a.out.sun4.h>
  25. #include "bfd.h"
  26. #include "libaout.h"           
  27. #include "libbfd.h"
  28.  
  29. #include "aout64.h"
  30. #include "stab.gnu.h"
  31. #include "ar.h"
  32.  
  33. /*
  34. The file @code{aoutf1.h} contains the code for BFD's
  35. a.out back end. Control over the generated back end is given by these
  36. two preprocessor names:
  37. @table @code
  38. @item ARCH_SIZE
  39. This value should be either 32 or 64, depending upon the size of an
  40. int in the target format. It changes the sizes of the structs which
  41. perform the memory/disk mapping of structures.
  42.  
  43. The 64 bit backend may only be used if the host compiler supports 64
  44. ints (eg long long with gcc), by defining the name @code{HOST_64_BIT} in @code{bfd.h}.
  45. With this name defined, @emph{all} bfd operations are performed with 64bit
  46. arithmetic, not just those to a 64bit target.
  47.  
  48. @item TARGETNAME
  49. The name put into the target vector.
  50. @item
  51. @end table
  52.  
  53. */
  54.  
  55. void (*bfd_error_trap)();
  56.  
  57. static bfd_target *sunos4_callback ();
  58.  
  59. /*SUPPRESS558*/
  60. /*SUPPRESS529*/
  61.  
  62. bfd_target *
  63. DEFUN(NAME(sunos,object_p), (abfd),
  64.      bfd *abfd)
  65. {
  66.   unsigned char magicbuf[4];    /* Raw bytes of magic number from file */
  67.   unsigned long magic;        /* Swapped magic number */
  68.  
  69.   bfd_error = system_call_error;
  70.  
  71.   if (bfd_read ((PTR)magicbuf, 1 , 4, abfd) !=
  72.       sizeof (magicbuf))
  73.     return 0;
  74.   magic = bfd_h_get_32 (abfd, magicbuf);
  75.  
  76.   if (N_BADMAG (*((struct internal_exec *) &magic))) return 0;
  77.  
  78.   return NAME(aout,some_aout_object_p) (abfd, sunos4_callback);
  79. }
  80.  
  81.   /* Determine the size of a relocation entry, based on the architecture */
  82. static void
  83. DEFUN(choose_reloc_size,(abfd),
  84. bfd *abfd)
  85.   {
  86.     switch (abfd->obj_arch) {
  87.     case bfd_arch_sparc:
  88.     case bfd_arch_a29k:
  89.       obj_reloc_entry_size (abfd) = RELOC_EXT_SIZE;
  90.       break;
  91.     default:
  92.       obj_reloc_entry_size (abfd) = RELOC_STD_SIZE;
  93.       break;
  94.     }
  95.   }
  96.  
  97. /* Set parameters about this a.out file that are machine-dependent.
  98.    This routine is called from some_aout_object_p just before it returns.  */
  99.  
  100. static bfd_target *
  101. sunos4_callback (abfd)
  102.      bfd *abfd;
  103. {
  104.   struct internal_exec *execp = exec_hdr (abfd);
  105.  
  106.   WORK_OUT_FILE_POSITIONS(abfd, execp);  
  107.  
  108.   /* Determine the architecture and machine type of the object file.  */
  109.   switch (N_MACHTYPE (*exec_hdr (abfd))) {
  110.     
  111.   case M_UNKNOWN:
  112.     abfd->obj_arch = bfd_arch_unknown;
  113.     abfd->obj_machine = 0;
  114.     break;
  115.     
  116.   case M_68010:
  117.     abfd->obj_arch = bfd_arch_m68k;
  118.     abfd->obj_machine = 68010;
  119.     break;
  120.     
  121.   case M_68020:
  122.     abfd->obj_arch = bfd_arch_m68k;
  123.     abfd->obj_machine = 68020;
  124.     break;
  125.     
  126.   case M_SPARC:
  127.     abfd->obj_arch = bfd_arch_sparc;
  128.     abfd->obj_machine = 0;
  129.     break;
  130.     
  131.   case M_386:
  132.     abfd->obj_arch = bfd_arch_i386;
  133.     abfd->obj_machine = 0;
  134.     break;
  135.     
  136.   case M_29K:
  137.     abfd->obj_arch = bfd_arch_a29k;
  138.     abfd->obj_machine = 0;
  139.     break;
  140.     
  141.   default:
  142.     abfd->obj_arch = bfd_arch_obscure;
  143.     abfd->obj_machine = 0;
  144.     break;
  145.   }
  146.   
  147.   choose_reloc_size(abfd);
  148.   return abfd->xvec;
  149. }
  150.  
  151.  
  152. /* Write an object file in SunOS format.
  153. Section contents have already been written.  We write the
  154. file header, symbols, and relocation.  */
  155.  
  156. boolean
  157. DEFUN(NAME(aout,sunos4_write_object_contents),(abfd),
  158.       bfd *abfd)
  159.  
  160.   {
  161.     bfd_size_type data_pad = 0;
  162.     struct external_exec exec_bytes;
  163.     struct internal_exec *execp = exec_hdr (abfd);
  164.     
  165.     
  166.     
  167.     execp->a_text = obj_textsec (abfd)->size;
  168.     
  169.     /* Magic number, maestro, please!  */
  170.     switch (bfd_get_architecture(abfd)) {
  171.     case bfd_arch_m68k:
  172.       switch (bfd_get_machine(abfd)) {
  173.       case 68010:
  174.     N_SET_MACHTYPE(*execp, M_68010);
  175.     break;
  176.       default:
  177.       case 68020:
  178.     N_SET_MACHTYPE(*execp, M_68020);
  179.     break;
  180.       }
  181.       break;
  182.     case bfd_arch_sparc:
  183.       N_SET_MACHTYPE(*execp, M_SPARC);
  184.       break;
  185.     case bfd_arch_i386:
  186.       N_SET_MACHTYPE(*execp, M_386);
  187.       break;
  188.     case bfd_arch_a29k:
  189.       N_SET_MACHTYPE(*execp, M_29K);
  190.       break;
  191.     default:
  192.       N_SET_MACHTYPE(*execp, M_UNKNOWN);
  193.     }
  194.     
  195.     choose_reloc_size(abfd);
  196.  
  197.     /* FIXME */
  198.     N_SET_FLAGS (*execp, 0x1);
  199.     
  200.     WRITE_HEADERS(abfd, execp);
  201.  
  202.   return true;
  203. }
  204.  
  205. /* core files */
  206.  
  207. #define CORE_MAGIC 0x080456
  208. #define CORE_NAMELEN 16
  209.  
  210. /* The core structure is taken from the Sun documentation.
  211. Unfortunately, they don't document the FPA structure, or at least I
  212. can't find it easily.  Fortunately the core header contains its own
  213. length.  So this shouldn't cause problems, except for c_ucode, which
  214. so far we don't use but is easy to find with a little arithmetic. */
  215.  
  216. /* But the reg structure can be gotten from the SPARC processor handbook.
  217. This really should be in a GNU include file though so that gdb can use
  218. the same info. */
  219. struct regs {
  220.   int r_psr;
  221.   int r_pc;
  222.   int r_npc;
  223.   int r_y;
  224.   int r_g1;
  225.   int r_g2;
  226.   int r_g3;
  227.   int r_g4;
  228.   int r_g5;
  229.   int r_g6;
  230.   int r_g7;
  231.   int r_o0;
  232.   int r_o1;
  233.   int r_o2;
  234.   int r_o3;
  235.   int r_o4;
  236.   int r_o5;
  237.   int r_o6;
  238.   int r_o7;
  239. };
  240.  
  241. /* Taken from Sun documentation: */
  242.  
  243. /* FIXME:  It's worse than we expect.  This struct contains TWO substructs
  244. neither of whose size we know, WITH STUFF IN BETWEEN THEM!  We can't
  245. even portably access the stuff in between!  */
  246.  
  247. struct external_sparc_core {
  248.   int c_magic;            /* Corefile magic number */
  249.   int c_len;            /* Sizeof (struct core) */
  250. #define    SPARC_CORE_LEN    432
  251.   int c_regs[19];        /* General purpose registers -- MACHDEP SIZE */
  252.   struct external_exec c_aouthdr;    /* A.out header */
  253.   int c_signo;            /* Killing signal, if any */
  254.   int c_tsize;            /* Text size (bytes) */
  255.   int c_dsize;            /* Data size (bytes) */
  256.   int c_ssize;            /* Stack size (bytes) */
  257.   char c_cmdname[CORE_NAMELEN + 1]; /* Command name */
  258.   double fp_stuff[1];            /* external FPU state (size unknown by us) */
  259.   /* The type "double" is critical here, for alignment.
  260.     SunOS declares a struct here, but the struct's alignment
  261.       is double since it contains doubles.  */
  262.   int c_ucode;            /* Exception no. from u_code */
  263.   /* (this member is not accessible by name since we don't
  264.     portably know the size of fp_stuff.) */
  265. };
  266.  
  267. struct external_sun3_core {
  268.   int c_magic;            /* Corefile magic number */
  269.   int c_len;            /* Sizeof (struct core) */
  270. #define    SUN3_CORE_LEN    826    /* As of SunOS 4.1.1 */
  271.   int c_regs[18];        /* General purpose registers -- MACHDEP SIZE */
  272.   struct external_exec c_aouthdr;    /* A.out header */
  273.   int c_signo;            /* Killing signal, if any */
  274.   int c_tsize;            /* Text size (bytes) */
  275.   int c_dsize;            /* Data size (bytes) */
  276.   int c_ssize;            /* Stack size (bytes) */
  277.   char c_cmdname[CORE_NAMELEN + 1]; /* Command name */
  278.   double fp_stuff[1];            /* external FPU state (size unknown by us) */
  279.   /* The type "double" is critical here, for alignment.
  280.     SunOS declares a struct here, but the struct's alignment
  281.       is double since it contains doubles.  */
  282.   int c_ucode;            /* Exception no. from u_code */
  283.   /* (this member is not accessible by name since we don't
  284.     portably know the size of fp_stuff.) */
  285. };
  286.  
  287. struct internal_sunos_core {
  288.   int c_magic;            /* Corefile magic number */
  289.   int c_len;            /* Sizeof (struct core) */
  290.   long c_regs_pos;        /* file offset of General purpose registers */
  291.   int c_regs_size;        /* size of General purpose registers */
  292.   struct internal_exec c_aouthdr;    /* A.out header */
  293.   int c_signo;            /* Killing signal, if any */
  294.   int c_tsize;            /* Text size (bytes) */
  295.   int c_dsize;            /* Data size (bytes) */
  296.   int c_ssize;            /* Stack size (bytes) */
  297.   long c_stacktop;        /* Stack top (address) */
  298.   char c_cmdname[CORE_NAMELEN + 1]; /* Command name */
  299.   long fp_stuff_pos;        /* file offset of external FPU state (regs) */
  300.   int fp_stuff_size;        /* Size of it */
  301.   int c_ucode;            /* Exception no. from u_code */
  302. };
  303.  
  304. /* byte-swap in the Sun-3 core structure */
  305. static void
  306. DEFUN(swapcore_sun3,(abfd, ext, intcore),
  307.       bfd *abfd AND
  308.       char *ext AND
  309.       struct internal_sunos_core *intcore)
  310. {
  311.   struct external_exec exec_bytes;
  312.   struct external_sun3_core *extcore = (struct external_sun3_core *)ext;
  313.   
  314.   intcore->c_magic = bfd_h_get_32 (abfd, (unsigned char *)&extcore->c_magic);
  315.   intcore->c_len   = bfd_h_get_32 (abfd, (unsigned char *)&extcore->c_len  );
  316.   intcore->c_regs_pos  = (long) (((struct external_sun3_core *)0)->c_regs);
  317.   intcore->c_regs_size = sizeof (extcore->c_regs);
  318.   NAME(aout,swap_exec_header_in)(abfd, &extcore->c_aouthdr,&intcore->c_aouthdr);
  319.   intcore->c_signo = bfd_h_get_32 (abfd, (unsigned char *)&extcore->c_signo);
  320.   intcore->c_tsize = bfd_h_get_32 (abfd, (unsigned char *)&extcore->c_tsize);
  321.   intcore->c_dsize = bfd_h_get_32 (abfd, (unsigned char *)&extcore->c_dsize);
  322.   intcore->c_ssize = bfd_h_get_32 (abfd, (unsigned char *)&extcore->c_ssize);
  323.   bcopy (extcore->c_cmdname, intcore->c_cmdname, sizeof (intcore->c_cmdname));
  324.   intcore->fp_stuff_pos = (long) (((struct external_sun3_core *)0)->fp_stuff);
  325.   /* FP stuff takes up whole rest of struct, except c_ucode. */
  326.   intcore->fp_stuff_size = intcore->c_len - (sizeof extcore->c_ucode) -
  327.     (file_ptr)(((struct external_sun3_core *)0)->fp_stuff);
  328.   /* Ucode is the last thing in the struct -- just before the end */
  329.   intcore->c_ucode = bfd_h_get_32 (abfd, 
  330.     intcore->c_len - sizeof (extcore->c_ucode) + (unsigned char *)extcore);
  331.   intcore->c_stacktop = 0x0E000000;    /* By experimentation */
  332. }
  333.  
  334.  
  335. /* byte-swap in the Sun-4(!!) core structure */
  336. static void
  337. DEFUN(swapcore_sparc,(abfd, ext, intcore),
  338.       bfd *abfd AND
  339.       char *ext AND
  340.       struct internal_sunos_core *intcore)
  341. {
  342.   struct external_sparc_core *extcore = (struct external_sparc_core *)ext;
  343.   int    sp;
  344.   
  345.   intcore->c_magic = bfd_h_get_32 (abfd, (unsigned char *)&extcore->c_magic);
  346.   intcore->c_len   = bfd_h_get_32 (abfd, (unsigned char *)&extcore->c_len  );
  347.   intcore->c_regs_pos  = (long) (((struct external_sparc_core *)0)->c_regs);
  348.   intcore->c_regs_size = sizeof (extcore->c_regs);
  349.   NAME(aout,swap_exec_header_in)(abfd, &extcore->c_aouthdr,&intcore->c_aouthdr);
  350.   intcore->c_signo = bfd_h_get_32 (abfd, (unsigned char *)&extcore->c_signo);
  351.   intcore->c_tsize = bfd_h_get_32 (abfd, (unsigned char *)&extcore->c_tsize);
  352.   intcore->c_dsize = bfd_h_get_32 (abfd, (unsigned char *)&extcore->c_dsize);
  353.   intcore->c_ssize = bfd_h_get_32 (abfd, (unsigned char *)&extcore->c_ssize);
  354.   bcopy (extcore->c_cmdname, intcore->c_cmdname, sizeof (intcore->c_cmdname));
  355.   intcore->fp_stuff_pos = (long) (((struct external_sparc_core *)0)->fp_stuff);
  356.   /* FP stuff takes up whole rest of struct, except c_ucode. */
  357.   intcore->fp_stuff_size = intcore->c_len - (sizeof extcore->c_ucode) -
  358.     (file_ptr)(((struct external_sparc_core *)0)->fp_stuff);
  359.   /* Ucode is the last thing in the struct -- just before the end */
  360.   intcore->c_ucode = bfd_h_get_32 (abfd, 
  361.     intcore->c_len - sizeof (extcore->c_ucode) + (unsigned char *)extcore);
  362.   /* Supposedly the user stack grows downward from the bottom of kernel memory.
  363.      Presuming that this remains true, this definition will work. */
  364. #ifdef sprite
  365.   sp = extcore->c_regs[17];
  366.   intcore->c_stacktop = (sp + intcore->c_ssize) & ~(getpagesize() - 1);
  367. #else
  368.   #define USRSTACK (-(128*1024*1024))
  369.   intcore->c_stacktop = USRSTACK;    /* By experimentation */
  370.   #undef USRSTACK
  371. #endif
  372. /*#define USRSTACK (-(128*1024*1024))
  373.   intcore->c_stacktop = USRSTACK;    /* By experimentation */
  374. #undef USRSTACK*/
  375. }
  376.  
  377. /* need this cast because ptr is really void * */
  378. #define core_hdr(bfd) (((struct suncoredata *) (bfd->tdata))->hdr)
  379. #define core_datasec(bfd) (((struct suncoredata *) ((bfd)->tdata))->data_section)
  380. #define core_stacksec(bfd) (((struct suncoredata*)((bfd)->tdata))->stack_section)
  381. #define core_regsec(bfd) (((struct suncoredata *) ((bfd)->tdata))->reg_section)
  382. #define core_reg2sec(bfd) (((struct suncoredata *) ((bfd)->tdata))->reg2_section)
  383.  
  384. /* These are stored in the bfd's tdata */
  385. struct suncoredata {
  386.   struct internal_sunos_core *hdr;             /* core file header */
  387.   asection *data_section;
  388.   asection *stack_section;
  389.   asection *reg_section;
  390.   asection *reg2_section;
  391. };
  392.  
  393. static bfd_target *
  394. DEFUN(sunos4_core_file_p,(abfd),
  395.       bfd *abfd)
  396. {
  397.   unsigned char longbuf[4];    /* Raw bytes of various header fields */
  398.   int core_size;
  399.   int core_mag;
  400.   struct internal_sunos_core *core;
  401.   char *extcore;
  402.   char *rawptr;
  403.   struct mergem {
  404.     struct suncoredata suncoredata;
  405.     struct internal_sunos_core internal_sunos_core;
  406.     char external_core[1];
  407.   } *mergem;
  408.   
  409.   bfd_error = system_call_error;
  410.   
  411.   if (bfd_read ((PTR)longbuf, 1, sizeof (longbuf), abfd) !=
  412.       sizeof (longbuf))
  413.     return 0;
  414.   core_mag = bfd_h_get_32 (abfd, longbuf);
  415.  
  416.   if (core_mag != CORE_MAGIC) return 0;
  417.  
  418.   /* SunOS core headers can vary in length; second word is size; */
  419.   if (bfd_read ((PTR)longbuf, 1, sizeof (longbuf), abfd) !=
  420.       sizeof (longbuf))
  421.     return 0;
  422.   core_size = bfd_h_get_32 (abfd, longbuf);
  423.   /* Sanity check */
  424.   if (core_size > 20000)
  425.     return 0;
  426.  
  427.   if (bfd_seek (abfd, 0L, false) < 0) return 0;
  428.  
  429.   mergem = (struct mergem *)bfd_zalloc (abfd, core_size + sizeof (struct mergem));
  430.   if (mergem == NULL) {
  431.     bfd_error = no_memory;
  432.     return 0;
  433.   }
  434.  
  435.   extcore = mergem->external_core;
  436.  
  437.   if ((bfd_read ((PTR) extcore, 1, core_size, abfd)) != core_size) {
  438.     bfd_error = system_call_error;
  439.     bfd_release (abfd, (char *)mergem);
  440.     return 0;
  441.   }
  442.  
  443.   /* Validate that it's a core file we know how to handle, due to sun
  444.      botching the positioning of registers and other fields in a machine
  445.      dependent way.  */
  446.   core = &mergem->internal_sunos_core;
  447.   switch (core_size) {
  448.   case SPARC_CORE_LEN:
  449.     swapcore_sparc (abfd, extcore, core);
  450.     break;
  451.   case SUN3_CORE_LEN:
  452.     swapcore_sun3 (abfd, extcore, core);
  453.     break;
  454.   default:
  455.     bfd_error = system_call_error;        /* FIXME */
  456.     bfd_release (abfd, (char *)mergem);
  457.     return 0;
  458.   }
  459.  
  460.   set_tdata (abfd, &mergem->suncoredata);
  461.   core_hdr (abfd) = core;
  462.  
  463.   /* create the sections.  This is raunchy, but bfd_close wants to reclaim
  464.      them */
  465.   core_stacksec (abfd) = (asection *) bfd_zalloc (abfd, sizeof (asection));
  466.   if (core_stacksec (abfd) == NULL) {
  467.   loser:
  468.     bfd_error = no_memory;
  469.     bfd_release (abfd, rawptr);
  470.     return 0;
  471.   }
  472.   core_datasec (abfd) = (asection *) bfd_zalloc (abfd, sizeof (asection));
  473.   if (core_datasec (abfd) == NULL) {
  474.   loser1:
  475.     bfd_release (abfd, core_stacksec (abfd));
  476.     goto loser;
  477.   }
  478.   core_regsec (abfd) = (asection *) bfd_zalloc (abfd, sizeof (asection));
  479.   if (core_regsec (abfd) == NULL) {
  480.   loser2:
  481.     bfd_release (abfd, core_datasec (abfd));
  482.     goto loser1;
  483.   }
  484.   core_reg2sec (abfd) = (asection *) bfd_zalloc (abfd, sizeof (asection));
  485.   if (core_reg2sec (abfd) == NULL) {
  486.     bfd_release (abfd, core_regsec (abfd));
  487.     goto loser2;
  488.   }
  489.  
  490.   core_stacksec (abfd)->name = ".stack";
  491.   core_datasec (abfd)->name = ".data";
  492.   core_regsec (abfd)->name = ".reg";
  493.   core_reg2sec (abfd)->name = ".reg2";
  494.  
  495.   core_stacksec (abfd)->flags = SEC_ALLOC + SEC_LOAD;
  496.   core_datasec (abfd)->flags = SEC_ALLOC + SEC_LOAD;
  497.   core_regsec (abfd)->flags = SEC_ALLOC;
  498.   core_reg2sec (abfd)->flags = SEC_ALLOC;
  499.  
  500.   core_stacksec (abfd)->size = core->c_ssize;
  501.   core_datasec (abfd)->size = core->c_dsize;
  502.   core_regsec (abfd)->size = core->c_regs_size;
  503.   core_reg2sec (abfd)->size = core->fp_stuff_size;
  504.  
  505.   core_stacksec (abfd)->vma = (core->c_stacktop - core->c_ssize);
  506.   core_datasec (abfd)->vma = N_DATADDR(core->c_aouthdr);
  507.   core_regsec (abfd)->vma = -1;
  508.   core_reg2sec (abfd)->vma = -1;
  509.  
  510.   core_stacksec (abfd)->filepos = core->c_len + core->c_dsize;
  511.   core_datasec (abfd)->filepos = core->c_len;
  512.   /* We'll access the regs afresh in the core file, like any section: */
  513.   core_regsec (abfd)->filepos = (file_ptr)core->c_regs_pos;
  514.   core_reg2sec (abfd)->filepos = (file_ptr)core->fp_stuff_pos;
  515.  
  516.   /* Align to word at least */
  517.   core_stacksec (abfd)->alignment_power = 2;
  518.   core_datasec (abfd)->alignment_power = 2;
  519.   core_regsec (abfd)->alignment_power = 2;
  520.   core_reg2sec (abfd)->alignment_power = 2;
  521.  
  522.   abfd->sections = core_stacksec (abfd);
  523.   core_stacksec (abfd)->next = core_datasec (abfd);
  524.   core_datasec (abfd)->next = core_regsec (abfd);
  525.   core_regsec (abfd)->next = core_reg2sec (abfd);
  526.  
  527.   abfd->section_count = 4;
  528.  
  529.   return abfd->xvec;
  530. }
  531.  
  532. static char *sunos4_core_file_failing_command (abfd)
  533. bfd *abfd;
  534.   {
  535.   return core_hdr (abfd)->c_cmdname;
  536. }
  537.  
  538. static int
  539. DEFUN(sunos4_core_file_failing_signal,(abfd),
  540.       bfd *abfd)
  541. {
  542.   return core_hdr (abfd)->c_signo;
  543. }
  544.  
  545. static boolean
  546. DEFUN(sunos4_core_file_matches_executable_p, (core_bfd, exec_bfd),
  547.       bfd *core_bfd AND
  548.       bfd *exec_bfd)
  549. {
  550.   if (core_bfd->xvec != exec_bfd->xvec) {
  551.     bfd_error = system_call_error;
  552.     return false;
  553.   }
  554.  
  555.   return (bcmp ((char *)&core_hdr (core_bfd), (char*) &exec_hdr (exec_bfd),
  556.         sizeof (struct internal_exec)) == 0) ? true : false;
  557. }
  558.  
  559. /* We use BFD generic archive files.  */
  560. #define    aout_32_openr_next_archived_file    bfd_generic_openr_next_archived_file
  561. #define    aout_32_generic_stat_arch_elt        bfd_generic_stat_arch_elt
  562. #define    aout_32_slurp_armap            bfd_slurp_bsd_armap
  563. #define    aout_32_slurp_extended_name_table    bfd_true
  564. #define    aout_32_write_armap            bsd_write_armap
  565. #define    aout_32_truncate_arname            bfd_bsd_truncate_arname
  566. #define aout_32_machine_type             sunos_machine_type
  567.  
  568. #define    aout_32_core_file_failing_command     sunos4_core_file_failing_command
  569. #define    aout_32_core_file_failing_signal    sunos4_core_file_failing_signal
  570. #define    aout_32_core_file_matches_executable_p    sunos4_core_file_matches_executable_p
  571.  
  572.  
  573. #define    aout_64_openr_next_archived_file    bfd_generic_openr_next_archived_file
  574. #define    aout_64_generic_stat_arch_elt        bfd_generic_stat_arch_elt
  575. #define    aout_64_slurp_armap            bfd_slurp_bsd_armap
  576. #define    aout_64_slurp_extended_name_table    bfd_true
  577. #define    aout_64_write_armap            bsd_write_armap
  578. #define    aout_64_truncate_arname            bfd_bsd_truncate_arname
  579. #define aout_64_machine_type             sunos_machine_type
  580.  
  581. #define    aout_64_core_file_failing_command     sunos4_core_file_failing_command
  582. #define    aout_64_core_file_failing_signal    sunos4_core_file_failing_signal
  583. #define    aout_64_core_file_matches_executable_p    sunos4_core_file_matches_executable_p
  584.  
  585. #define aout_64_bfd_debug_info_start        bfd_void
  586. #define aout_64_bfd_debug_info_end        bfd_void
  587. #define aout_64_bfd_debug_info_accumulate    bfd_void
  588.  
  589. #define aout_32_bfd_debug_info_start        bfd_void
  590. #define aout_32_bfd_debug_info_end        bfd_void
  591. #define aout_32_bfd_debug_info_accumulate    (PROTO(void,(*),(bfd*, struct sec *))) bfd_void
  592.  
  593.  
  594.  
  595. /* We implement these routines ourselves, rather than using the generic
  596. a.out versions.  */
  597. #define    aout_write_object_contents    sunos4_write_object_contents
  598.  
  599. bfd_target VECNAME =
  600.   {
  601.     TARGETNAME,
  602.     bfd_target_aout_flavour_enum,
  603.     true,            /* target byte order */
  604.     true,            /* target headers byte order */
  605.     (HAS_RELOC | EXEC_P |    /* object flags */
  606.      HAS_LINENO | HAS_DEBUG |
  607.      HAS_SYMS | HAS_LOCALS | DYNAMIC | WP_TEXT | D_PAGED),
  608.     (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
  609.     ' ',                           /* ar_pad_char */
  610.     16,                               /* ar_max_namelen */
  611.     3,                               /* minimum alignment power */
  612.     _do_getb64, _do_putb64, _do_getb32, _do_putb32, _do_getb16, _do_putb16, /* data */
  613.     _do_getb64, _do_putb64, _do_getb32, _do_putb32, _do_getb16, _do_putb16, /* hdrs */
  614.     
  615.       {_bfd_dummy_target, NAME(sunos,object_p),
  616.        bfd_generic_archive_p, sunos4_core_file_p},
  617.       {bfd_false, NAME(aout,mkobject),
  618.        _bfd_generic_mkarchive, bfd_false},
  619.       {bfd_false, NAME(aout,sunos4_write_object_contents), /* bfd_write_contents */
  620.        _bfd_write_archive_contents, bfd_false},
  621.     
  622.     JUMP_TABLE(JNAME(aout))
  623.     };
  624.